home *** CD-ROM | disk | FTP | other *** search
/ Just Call Me Internet / Just Call Me Internet.iso / prog / atari / c / stut_src / term_pu.h < prev    next >
Text File  |  1996-06-05  |  1KB  |  53 lines

  1. /*
  2.  * Terminal_Public.h
  3.  *
  4.  * ---------------- METHODES --------------
  5.  */
  6.  
  7. void    init_MinitelPort(
  8.                 int    n_port );            /* In: Port concern‚ */
  9. void    MinitelPort_ChgeSpeed(
  10.                 int    n_port,            /* In: Port concern‚ */
  11.                 long    l_newspeed );    /* In: Code nouvelle vitesse */
  12.  
  13. void    sconout ( int device, long length, char *seq );
  14.  
  15. void    pos( 
  16.                             int device,    /* In: No périf concerné */
  17.                             int x,         /* In: Position horizontale (colomne) */
  18.                             int y );        /* In: Position verticale (ligne) */
  19. void    str_conout( 
  20.                             int device, 
  21.                     const        char *string );
  22. void    str_nconout( 
  23.             int         device, 
  24.             const char    *    string,
  25.             int        n_maxlen );    /* In: Longueur maximum */
  26. void    start_l0(  
  27.             int device );    /* In: No p‚rif concern‚ */
  28. void    end_l0(  
  29.                             int device );    /* In: No p‚rif concern‚ */
  30.  
  31. void    csr_on( int device );
  32. void    csr_off( int device );
  33. void    full_cls( int device );
  34.  
  35. void    allume_minitel( 
  36.             int device );    /* In: No périf concerné */
  37. void    eteind_minitel( 
  38.             int device );    /* In: No p‚rif concern‚ */
  39.  
  40. void    param_local( int device );
  41. void    envoi_porteuse( int device );
  42. void    deconnecte_modem( int device );
  43. void    param_normal( int device );
  44. void    param_minitel( 
  45.                 int     device,
  46.                 BOOL    b_Connecte );    /* In: TRUE si connect‚ */
  47.  
  48. void    pos( int device, int x, int y );
  49. void    set_tcolor( int device, int color );
  50. void    term_setReverse( int device );
  51. void    cconout ( int device, int code );
  52. void    mconout ( int device, int code, int nb );
  53.